home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / mint110 / types.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  426 b   |  24 lines

  1. /*
  2. Copyright 1990,1991,1992 Eric R. Smith. All rights reserved.
  3. */
  4.  
  5. #ifndef _types_h
  6. #define _types_h
  7.  
  8. #ifndef dLibs
  9. typedef unsigned long     ulong;
  10. typedef unsigned short    ushort;
  11. typedef unsigned char    uchar;
  12. #endif
  13.  
  14. typedef long ARGS_ON_STACK (*Func)();
  15.  
  16. /* structure used to hold i/o buffers */
  17. typedef struct io_rec {
  18.     char *bufaddr;
  19.     short buflen, head, tail, low_water, hi_water;
  20. } IOREC_T;
  21.  
  22.  
  23. #endif
  24.